home *** CD-ROM | disk | FTP | other *** search
- /******************************************************************/
- /* */
- /* TurboCAD for Windows */
- /* Copyright (c) 1993 - 2001 */
- /* International Microcomputer Software, Inc. */
- /* (IMSI) */
- /* All rights reserved. */
- /* */
- /******************************************************************/
-
- // MDDialog.h : header file
- //
-
- #include "VPWnd.h"
-
- /////////////////////////////////////////////////////////////////////////////
- // CMakeDwgDlg dialog
-
- class CMakeDwgDlg : public CDialog
- {
- // Construction
- public:
- CMakeDwgDlg(CWnd* pParent = NULL); // standard constructor
- ~CMakeDwgDlg(); // TurboCAD SDK: make sure we release the application
-
- // Dialog Data
- //{{AFX_DATA(CMakeDwgDlg)
- enum { IDD = IDD_MAKEDWG_DIALOG };
- // NOTE: the ClassWizard will add data members here
- //}}AFX_DATA
-
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CMakeDwgDlg)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
-
- // Implementation
- protected:
- HRESULT SetupView(IDrawing* pIDrawing);
- void SyncToApplication();
- void EnableButtons();
-
- // TurboCAD SDK: add view member
- CViewWnd m_view;
- HICON m_hIcon;
-
- // TurboCAD SDK: Pointer to the running application.
- IApplication* m_pIApplication;
-
- // Generated message map functions
- //{{AFX_MSG(CMakeDwgDlg)
- virtual BOOL OnInitDialog();
- afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
- afx_msg void OnPaint();
- afx_msg HCURSOR OnQueryDragIcon();
- afx_msg void OnAddCircle();
- afx_msg void OnAddLine();
- afx_msg void OnAddSpline();
- afx_msg void OnNewDrawing();
- afx_msg void OnInprocServer();
- afx_msg void OnLocalServer();
- afx_msg void OnOpenDrawing();
- afx_msg void OnSaveDrawing();
- afx_msg void OnGetActive();
- afx_msg void OnSelchangeDrawings();
- afx_msg void OnAddBezier();
- afx_msg void OnDestroy();
- afx_msg void OnCurveSmooth();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-